Skip to content

chore(deps): bump google.golang.org/grpc from 1.57.1 to 1.79.3 in /manifests/src/main/resources/runtime/flox/nri-plugin in the go_modules group across 1 directory#6

Open
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/go_modules/manifests/src/main/resources/runtime/flox/nri-plugin/go_modules-9c5197dcb8
Open

chore(deps): bump google.golang.org/grpc from 1.57.1 to 1.79.3 in /manifests/src/main/resources/runtime/flox/nri-plugin in the go_modules group across 1 directory#6
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/go_modules/manifests/src/main/resources/runtime/flox/nri-plugin/go_modules-9c5197dcb8

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github May 26, 2026

Copy link
Copy Markdown

Bumps the go_modules group with 1 update in the /manifests/src/main/resources/runtime/flox/nri-plugin directory: google.golang.org/grpc.

Updates google.golang.org/grpc from 1.57.1 to 1.79.3

Release notes

Sourced from google.golang.org/grpc's releases.

Release 1.79.3

Security

  • server: fix an authorization bypass where malformed :path headers (missing the leading slash) could bypass path-based restricted "deny" rules in interceptors like grpc/authz. Any request with a non-canonical path is now immediately rejected with an Unimplemented error. (#8981)

Release 1.79.2

Bug Fixes

  • stats: Prevent redundant error logging in health/ORCA producers by skipping stats/tracing processing when no stats handler is configured. (grpc/grpc-go#8874)

Release 1.79.1

Bug Fixes

Release 1.79.0

API Changes

  • mem: Add experimental API SetDefaultBufferPool to change the default buffer pool. (#8806)
  • experimental/stats: Update MetricsRecorder to require embedding the new UnimplementedMetricsRecorder (a no-op struct) in all implementations for forward compatibility. (#8780)

Behavior Changes

  • balancer/weightedtarget: Remove handling of Addresses and only handle Endpoints in resolver updates. (#8841)

New Features

  • experimental/stats: Add support for asynchronous gauge metrics through the new AsyncMetricReporter and RegisterAsyncReporter APIs. (#8780)
  • pickfirst: Add support for weighted random shuffling of endpoints, as described in gRFC A113.
    • This is enabled by default, and can be turned off using the environment variable GRPC_EXPERIMENTAL_PF_WEIGHTED_SHUFFLING. (#8864)
  • xds: Implement :authority rewriting, as specified in gRFC A81. (#8779)
  • balancer/randomsubsetting: Implement the random_subsetting LB policy, as specified in gRFC A68. (#8650)

Bug Fixes

  • credentials/tls: Fix a bug where the port was not stripped from the authority override before validation. (#8726)
  • xds/priority: Fix a bug causing delayed failover to lower-priority clusters when a higher-priority cluster is stuck in CONNECTING state. (#8813)
  • health: Fix a bug where health checks failed for clients using legacy compression options (WithDecompressor or RPCDecompressor). (#8765)
  • transport: Fix an issue where the HTTP/2 server could skip header size checks when terminating a stream early. (#8769)
  • server: Propagate status detail headers, if available, when terminating a stream during request header processing. (#8754)

Performance Improvements

  • credentials/alts: Optimize read buffer alignment to reduce copies. (#8791)
  • mem: Optimize pooling and creation of buffer objects. (#8784)
  • transport: Reduce slice re-allocations by reserving slice capacity. (#8797)

... (truncated)

Commits

Dependabot compatibility score

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore <dependency name> major version will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself)
  • @dependabot ignore <dependency name> minor version will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself)
  • @dependabot ignore <dependency name> will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself)
  • @dependabot unignore <dependency name> will remove all of the ignore conditions of the specified dependency
  • @dependabot unignore <dependency name> <ignore condition> will remove the ignore condition of the specified dependency and ignore conditions
    You can disable automated security fix PRs for this repo from the Security Alerts page.

Bumps the go_modules group with 1 update in the /manifests/src/main/resources/runtime/flox/nri-plugin directory: [google.golang.org/grpc](https://github.com/grpc/grpc-go).


Updates `google.golang.org/grpc` from 1.57.1 to 1.79.3
- [Release notes](https://github.com/grpc/grpc-go/releases)
- [Commits](grpc/grpc-go@v1.57.1...v1.79.3)

---
updated-dependencies:
- dependency-name: google.golang.org/grpc
  dependency-version: 1.79.3
  dependency-type: indirect
  dependency-group: go_modules
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot Bot added dependencies Pull requests that update a dependency file go Pull requests that update go code labels May 26, 2026
@nxmatic nxmatic force-pushed the main branch 2 times, most recently from 165a306 to d6b84a3 Compare May 27, 2026 14:49
nxmatic added a commit that referenced this pull request May 28, 2026
Complete Phase 1 deliverables #5-7 for GitOps + Cluster API transition:
- Image-state ConfigMap for Stage A → Stage B handoff
- Flux GitRepository and root Kustomization for GitOps bootstrap
- SOPS age Secret for encrypted resource decryption

## Deliverable #5: Image-State ConfigMap

**ImageStateConfigMapManifestUnit**:
- Creates `<cluster>-image-state` ConfigMap in `capn-system` namespace
- Contains Stage A → Stage B handoff data:
  - imageAlias: "control-node"
  - imageFingerprint: from imageProvider
  - imageBuildChecksum: from BuildMetadata
  - incusProject: "rke2lab"
  - incusRemoteAddress: cluster remote URI
- Currently uses placeholders - will integrate with Stage A outputs

**Purpose**: seed-peers (Phase 2) reads this ConfigMap to populate
LXCMachineTemplate.spec.template.spec.image references

## Deliverable #6: GitOps Bootstrap Layer

**FluxRootManifestUnit**:
- Creates GitRepository CR pointing to this repo (branch: main)
- Creates root Kustomization CR watching `gitops/clusters/<cluster>/`
- Configures SOPS decryption with age key Secret reference
- Solves chicken-and-egg: applied by rke2lab-cluster-manifests.service
  at first boot, then Flux self-manages from gitops/ directory

**Pattern**: Bootstrap layer emits the CRs, same CRs also committed
under `gitops/flux-system/` for self-reference

## Deliverable #7: Age Key Bootstrapping

**SopsAgeSecretManifestUnit**:
- Creates `sops-age` Secret in `flux-system` namespace
- Reads private age key from `.secrets` (flux.ageKey)
- Enables Flux to decrypt SOPS-encrypted resources (Phase 2 cloud-init)

**Operator setup required**:
1. Generate keypair: `age-keygen -o cluster-age.key`
2. Add private key to `.secrets` under `flux.ageKey`
3. Add public key to `gitops/clusters/<cluster>/.sops.yaml`
4. Encrypt `.secrets` with SOPS and commit `.sops.yaml`

## Registration

All units registered in their respective domain registrars:
- ClusterApiDomainRegistrar: ImageStateConfigMapManifestUnit
- GitopsDomainRegistrar: FluxRootManifestUnit, SopsAgeSecretManifestUnit

Applied when `link.clusterApi.enabled: true` and `link.gitops.enabled: true`
(both default true in ManifestLinkPolicy)

Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
@nxmatic nxmatic force-pushed the main branch 2 times, most recently from 8c8d4c4 to 3d1cbe6 Compare May 30, 2026 17:09
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependencies Pull requests that update a dependency file go Pull requests that update go code

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants